home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-bookmarkconflict.xul < prev    next >
Extensible Markup Language  |  2010-01-28  |  4KB  |  108 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  
  5.  Copyright 2005-2007 Foxmarks Inc.
  6.  
  7.  foxmarks-bookmarkconflict.xul: implements Bookmark Conflict dialog.
  8.  
  9. -->
  10.  
  11.  
  12. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  13.  
  14. <!DOCTYPE dialog SYSTEM "chrome://foxmarks/locale/conflicts.dtd">
  15.  
  16. <dialog id="foxmarks-bookmarkconflict" title="&bookmarkconflict.title;"
  17.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  18.         windowtype="foxmarks:bookmarkconflict"
  19.         buttons="cancel"
  20.         ondialogcancel="return ConflictCancel();"
  21.         onload="OnBookmarkConflictLoad();"
  22.         persist="screenX screenY">
  23.  
  24.     <script src="foxmarks-conflicts.js" />
  25.         
  26.     <description>&bookmarkconflict.desc1;</description>
  27.     <description>&bookmarkconflict.desc2;</description>
  28.     
  29.  
  30.     <hbox>
  31.         <vbox>
  32.             <groupbox>
  33.                 <caption label="&conflict.localversion;" />
  34.                 <grid>
  35.                     <columns>
  36.                         <column />
  37.                         <column />
  38.                     </columns>
  39.                     
  40.                     <rows>
  41.                         <row>
  42.                             <label value="&conflict.name;" />
  43.                             <textbox readonly="true" id="localname" />
  44.                         </row>
  45.                         <row>
  46.                             <label value="&conflict.location;" />
  47.                             <textbox readonly="true" id="localurl" />
  48.                         </row>
  49.                         <row>
  50.                             <label value="&conflict.keyword;" />
  51.                             <textbox readonly="true" id="localkeyword" />
  52.                         </row>
  53.                         <row>
  54.                             <label value="&conflict.description;" />
  55.                             <textbox multiline="true" readonly="true" 
  56.                                 id="localdesc" />
  57.                         </row>
  58.                         <row>
  59.                             <checkbox disabled="true" id="localwebpanel" />
  60.                             <label value="&conflict.sidebar;" />
  61.                         </row>
  62.                     </rows>
  63.                 </grid>
  64.             </groupbox>
  65.             <button label="&conflict.retainlocal;" 
  66.                 oncommand="ConflictSelectLocal();" />
  67.         </vbox>
  68.         
  69.         <vbox>
  70.             <groupbox>
  71.                 <caption label="&conflict.serverversion;" />
  72.                 <grid>
  73.                     <columns>
  74.                         <column />
  75.                         <column />
  76.                     </columns>
  77.                     
  78.                     <rows>
  79.                         <row>
  80.                             <label value="&conflict.name;" />
  81.                             <textbox readonly="true" id="servername" />
  82.                         </row>
  83.                         <row>
  84.                             <label value="&conflict.location;" />
  85.                             <textbox readonly="true" id="serverurl" />
  86.                         </row>
  87.                         <row>
  88.                             <label value="&conflict.keyword;" />
  89.                             <textbox readonly="true" id="serverkeyword" />
  90.                         </row>
  91.                         <row>
  92.                             <label value="&conflict.description;" />
  93.                             <textbox multiline="true" readonly="true" 
  94.                                 id="serverdesc" />
  95.                         </row>
  96.                         <row>
  97.                             <checkbox disabled="true" id="serverwebpanel" />
  98.                             <label value="&conflict.sidebar;" />
  99.                         </row>
  100.                     </rows>
  101.                 </grid>
  102.             </groupbox>
  103.             <button label="&conflict.retainserver;" 
  104.                 oncommand="ConflictSelectServer();" />
  105.         </vbox>
  106.     </hbox>
  107. </dialog>
  108.